lib/repo-finder-mount: Fix path to flatpak repo
authorMatthew Leeds <matthew.leeds@endlessm.com>
Tue, 27 Feb 2018 02:54:54 +0000 (18:54 -0800)
committerAtomic Bot <atomic-devel@projectatomic.io>
Tue, 27 Feb 2018 20:53:46 +0000 (20:53 +0000)
OstreeRepoFinderMount checks mounts for a few well-known directories
such as "ostree/repo" and ".ostree/repo" to try to find remotes. One of
the hard-coded directories is "var/lib/flatpak" but that's the flatpak
directory, not the ostree repo used by flatpak, which is at
"var/lib/flatpak/repo". So this commit changes the path so the repo can
be found.

For recent versions of Endless, flatpak uses /ostree/repo as its
repository, so this commit won't make a difference there. But it may
help on other operating systems.

Closes: #1471
Approved by: cgwalters

src/libostree/ostree-repo-finder-mount.c

index a7919fca913b6d32c45fda39f0dc19685fbbcc51..cdb958cdc2aaf21feb622ff39d1b649a74fd7bd8 100644 (file)
@@ -439,7 +439,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
         {
           ".ostree/repo",
           "ostree/repo",
-          "var/lib/flatpak",
+          "var/lib/flatpak/repo",
         };
 
       for (i = 0; i < G_N_ELEMENTS (well_known_repos); i++)